Date Created Feb 05 2022

index


Workflow Notes to Remember

Middleman exist on wsl ubuntu

I have set it up with nvm and rbenv. Nvm for installing Node and Rbenv for installing Ruby versions.

To list all bundler configurations for the current bundle, run bundle config without any parameters.

You will also get the location where the value is set.


$ bundle config

      Settings are listed in order of priority. The top value will be used.

      Inside a project directory, we can check if gems are being installed locally:

$ bundle config path

      Then 

$ bundle config path 'vendor/bundle' --local

This creates a .bundle folder with a single file named config inside. Its contents are the following:


---
BUNDLE_PATH: "vendor/bundle"

Then run bundle install

Update Bundler with Bundle

bundle update --bundler

I guess if you want to update with another versions of Bundler

bundle _2.3.3_ update --bundler

Installing with npm:

npm i autoprefixer

Checking local gems

bundle info (gemfile name)

Node.js >=16.10

Corepack is included by default with all Node.js installs, but is currently opt-in. To enable it, run the following command:

corepack enable

Check installed

yarn help

I am working on the uikit template which seems promising.

Start the middleman server with bundle exe middleman server

  1. middleman init 02_uikitmm -T hajnyon/middleman-uikit-documentation-template
  2. https://github.com/ralixjs/middleman-ralix-tailwind

links

Date Modified: 2023-11-26